home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-09-22 | 959 b | 36 lines |
- /*
- * @(#)LocaleElements_fr_LU.java 1.1 98/07/07
- *
- * (C) Copyright IBM Corp. 1998 - All Rights Reserved
- */
-
- /**
- * Table of Java supplied standard locale elements
- * Created 19 May 1998
- */
-
- // WARNING : the format of this file will change in the future!
-
- package java.text.resources;
-
- import java.util.ListResourceBundle;
-
- public class LocaleElements_fr_LU extends ListResourceBundle {
- /**
- * Overrides ListResourceBundle
- */
- public Object[][] getContents() {
- return new Object[][] {
- { "LocaleString", "fr_LU" }, // locale id based on iso codes
- { "ShortCountry", "LUX" }, // iso-3 abbrev country name
- { "CurrencyElements",
- new String[] {
- "F", // local currency symbol
- "LUF", // intl currency symbol
- "," // monetary decimal separator
- }
- }
- };
- }
- }
-